home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / Echo.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  72 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Echo.h - Echo Effect
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef ECHO_H
  24. #define ECHO_H
  25.  
  26. #include "../globals.h"
  27. #include "Effect.h"
  28.  
  29. class Echo:public Effect{
  30.     public:
  31.     Echo(int insertion,REALTYPE *efxoutl_,REALTYPE *efxoutr_);
  32.     ~Echo();
  33.     void out(REALTYPE *smpsl,REALTYPE *smpr);
  34.     void setpreset(unsigned char npreset);
  35.     void changepar(int npar,unsigned char value);
  36.     unsigned char getpar(int npar);
  37.     void cleanup();
  38.  
  39.     void setdryonly();
  40.     private:
  41.     //Parametrii
  42.     unsigned char Pvolume;//Volumul or E/R
  43.     unsigned char Ppanning;//Panning
  44.     unsigned char Pdelay;
  45.     unsigned char Plrdelay;// L/R delay difference
  46.     unsigned char Plrcross;// L/R Mixing
  47.     unsigned char Pfb;//Feed-back-ul
  48.     unsigned char Phidamp;
  49.     
  50.     void setvolume(unsigned char Pvolume);
  51.     void setpanning(unsigned char Ppanning);
  52.     void setdelay(unsigned char Pdelay);
  53.     void setlrdelay(unsigned char Plrdelay);
  54.     void setlrcross(unsigned char Plrcross);
  55.     void setfb(unsigned char Pfb);
  56.     void sethidamp(unsigned char Phidamp);
  57.     
  58.     //Parametrii reali
  59.     REALTYPE panning,lrcross,fb,hidamp;
  60.     int dl,dr,delay,lrdelay;
  61.     
  62.     void initdelays();
  63.     REALTYPE *ldelay,*rdelay;
  64.     REALTYPE oldl,oldr;//pt. lpf
  65.     int kl,kr;
  66. };
  67.  
  68.  
  69. #endif
  70.  
  71.  
  72.